/* Alheimsstíll fyrir footer */
.footer {
  background-color: pink;
  color: #555;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Container fyrir footer efni - Mobile Default */
.footer-container {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  gap: 5px; 
}

/* Footer upplýsingar (Opnunartímar) og staðsetning - Mobile Default */
.footer-info,
.address {
  text-align: center; 
  width: 100%; 
  margin: 0;
}

/* Footer upplýsingar (Opnunartímar) og staðsetning fyrirsagnir */
.footer-info h3,
.address h3 {
  color: #555;
  margin-bottom: 10px;
}

.footer-info ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-info li {
  margin: 5px 0;
}

/* Footer Bottom (Félagsmiðlar) - Mobile Default */
.footer-bottom {
  padding-top: 10px;
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.footer-bottom::before {
  content: ''; /* Tómt efni til að búa til línu */
  display: block;
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 80%; 
  border-top: 1px solid #555; 
  margin-bottom: 20px;
}

.social-media {
  margin-top: 20px; 
  text-align: center;
}

.social-media a {
  margin: 0 10px;
  font-size: 28px; 
  color: #555;
  text-decoration: none;
}

.social-media a:hover {
  color: #f0f0f0;
}

/* Desktop Layout */
@media screen and (min-width: 769px) {
  .footer-container {
    flex-direction: row; 
    align-items: flex-start; 
    justify-content: space-between; 
  }

  .footer-info,
  .address {
    text-align: left; 
    width: 48%; 
  }

  .footer-info {
    text-align: right; 
    padding-right: 30px; 
  }

  .social-media a {
    font-size: 24px; 
  }
}
